home *** CD-ROM | disk | FTP | other *** search
- if(Number(this._y) - Number(_root.UP_SPEED) > _root.VERT_CEIL)
- {
- setProperty(this, _Y, Number(this._y) - Number(_root.UP_SPEED));
- setProperty("_root.catchPointTop", _Y, Number(_root.catchPointTop._y) - Number(_root.UP_SPEED));
- setProperty("_root.catchPointBottom", _Y, Number(_root.catchPointBottom._y) - Number(_root.UP_SPEED));
- setProperty("_root.interface.burst" + _root.gCurrentChannel, _Y, Number(eval("_root.interface.burst" + _root.gCurrentChannel + "._y")) - Number(_root.UP_SPEED));
- play();
- }
- else
- {
- var vLeftover;
- vLeftover = Number(this._y) - Number(_root.VERT_CEIL);
- setProperty(this, _Y, _root.VERT_CEIL);
- setProperty("_root.catchPointTop", _Y, Number(Number(_root.catchPointTop._y) - Number(vLeftover)) + Number(_root.HIT_ADJUST));
- setProperty("_root.catchPointBottom", _Y, Number(Number(_root.catchPointBottom._y) - Number(vLeftover)) + Number(_root.HIT_ADJUST));
- setProperty("_root.interface.burst" + _root.gCurrentChannel, _Y, Number(eval("_root.interface.burst" + _root.gCurrentChannel + "._y")) - Number(vLeftover));
- delete vLeftover;
- _root.gOlieState = "stall_left";
- vCounter = Number(0);
- gotoAndPlay(15);
- }
-